home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000212_news@newsmaster….columbia.edu _Mon Oct 26 11:06:10 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA01827
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 26 Oct 1998 11:06:10 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA21119
  7.     for kermit.misc@watsun; Mon, 26 Oct 1998 11:06:09 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: newbie question:atdt command works but not using dial command
  12. Date: 26 Oct 1998 16:06:07 GMT
  13. Organization: Columbia University
  14. Lines: 40
  15. Message-ID: <7126lf$lb7$1@apakabar.cc.columbia.edu>
  16. References: <363441A7.90910EC@siemens.com.sg>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9412
  19.  
  20. In article <363441A7.90910EC@siemens.com.sg>,
  21. Muljawan Hendrianto  <muljawan.hendrianto@siemens.com.sg> wrote:
  22. : I have installed C-Kermit 6.1 in our Redhat 5.1.
  23. : The installation was successful, and I can even connect to another modem
  24. : using atdt command.
  25. : But when I use the 'dial' command, I got the following error message,
  26. : [/dev/] C-Kermit>dial 97407554
  27. :  Trying: 97407554...
  28. :  Device: /dev/ttyS1, modem: motorola-montana, speed: 38400
  29. :  Dial timeout: 43 seconds
  30. :  To cancel: type your interrupt character (normally Ctrl-C).
  31. : DIAL Failure: Error initializing modem.
  32. : Does anyone has an idea, what can be wrong ?
  33. This indicates a total failure to communicate with the modem.  The manual
  34. goes into great detail about how to set up and troubleshoot modem connections.
  35.  
  36. You didn't show the sequence of commands you used.  It should have been:
  37.  
  38.   set modem type motorola-montana
  39.   set line /dev/ttyS1
  40.   set speed 38400
  41.   dial 97407554  
  42.  
  43. in that order; the order is important.
  44.  
  45. A couple other hints:
  46.  
  47.  1. Use "set dial display on" to monitor the dialog between Kermit and
  48.     the modem.
  49.  
  50.  2. It often happens that when ttyS1 doesn't work, cua does (and vice
  51.     versa).  Mysteries of Linux...
  52.  
  53.  3. If the Motorola Montana is a PCMCIA or Plug-n-Play modem, you probably
  54.     need to run some kind of special utility to set it up for use with Linux.
  55.  
  56. - Frank